home *** CD-ROM | disk | FTP | other *** search
- /* arexx Script
- */
-
- options results
- parse ARG Port b
-
- ADDRESS value Port
-
- nb=10
-
- pp_CountFrames
- nb=result
- if nb<2 then do
- pp_Warn 'Make*an*Anim*first.'
- EXIT
- end
-
-
- pp_DialogInit 250 100 "*Polar*Coordinates*" 2
- pp_Slider 0 100 5 100 16 "Start*Frame*#" 1 1 nb 1
- pp_Slider 1 100 25 100 16 "End*Frame*#" 1 1 nb nb
- pp_Dialog
- rc=result
- if rc=0 then
- do
- EXIT
- end
-
- pp_GetDialog 0
- s0=result
-
- pp_GetDialog 1
- s1=result
-
- if s1=s0 then DO
- pp_GotoFrame s0
- pp_UpdateUndo
- pp_PolarC
- END
- else do
- Do i=s0 to s1
- pp_GotoFrame i
- pp_PolarC
- END
- pp_GotoFrame s0
- END
-
- exit
-